home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / double_const.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  713b  |  19 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. from test.test_support import TestFailed
  5. PI = 3.1415926535897931
  6. TWOPI = 6.2831853071795862
  7. PI_str = '3.14159265358979324'
  8. TWOPI_str = '6.28318530717958648'
  9.  
  10. def check_ok(x, x_str):
  11.     x2 = eval(x_str)
  12.     diff = abs(x - x2)
  13.     if x2 + diff / 8.0 != x2:
  14.         raise TestFailed('Manifest const %s lost too much precision ' % x_str)
  15.     
  16.  
  17. check_ok(PI, PI_str)
  18. check_ok(TWOPI, TWOPI_str)
  19.